home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 October / Chip_2004-10_cd1.bin / software / stahuj / prog / pdfdemo.exe / {app} / frmPDFPreview.frm < prev    next >
Text File  |  2000-10-12  |  1KB  |  38 lines

  1. VERSION 5.00
  2. Object = "{CA8A9783-280D-11CF-A24D-444553540000}#1.3#0"; "pdf.ocx"
  3. Begin VB.Form frmPDFPreview 
  4.    Caption         =   "Form1"
  5.    ClientHeight    =   5940
  6.    ClientLeft      =   60
  7.    ClientTop       =   345
  8.    ClientWidth     =   7680
  9.    LinkTopic       =   "Form1"
  10.    ScaleHeight     =   5940
  11.    ScaleWidth      =   7680
  12.    StartUpPosition =   3  'Windows Default
  13.    Begin PdfLib.Pdf Pdf1 
  14.       Height          =   5775
  15.       Left            =   120
  16.       TabIndex        =   0
  17.       Top             =   120
  18.       Width           =   7575
  19.       _Version        =   131072
  20.       _ExtentX        =   13361
  21.       _ExtentY        =   10186
  22.       _StockProps     =   0
  23.       SRC             =   ""
  24.    End
  25. End
  26. Attribute VB_Name = "frmPDFPreview"
  27. Attribute VB_GlobalNameSpace = False
  28. Attribute VB_Creatable = False
  29. Attribute VB_PredeclaredId = True
  30. Attribute VB_Exposed = False
  31. Private Sub Form_Resize()
  32.  
  33. Pdf1.Width = Me.Width - 250
  34. Pdf1.Height = Me.Height - 550
  35.  
  36. End Sub
  37.  
  38.